home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_GGxli.idb / usr / freeware / src / xli-1.16 / cmuwmrast.h.z / cmuwmrast.h
C/C++ Source or Header  |  1997-09-09  |  394b  |  19 lines

  1. /* #ident    "@(#)x11:contrib/clients/xloadimage/cmuwmrast.h 1.4 93/07/23 Labtam" */
  2. /* cmuwmrast.h
  3.  *
  4.  * this describes the header for ITC (CMU WM) raster files. It is
  5.  * essentially a byte reversed Sun raster, 1 plane, no encoding.
  6.  */
  7.  
  8. #include "copyright.h"
  9.  
  10. struct cmuwm_header
  11. {
  12.     byte magic[4];
  13.     byte width[4];
  14.     byte height[4];
  15.     byte depth[2];
  16. };
  17.  
  18. #define CMUWM_MAGIC 0xf10040bb
  19.